home *** CD-ROM | disk | FTP | other *** search
/ PC Player 2004 May / pc player 2004-05.iso / Demos / FarCry / Data1.cab / _C2EFADB6404A46569B4F3507716C38C7 < prev    next >
Encoding:
Text File  |  2004-01-06  |  483 b   |  24 lines

  1. -- Created by Petar; 
  2. --------------------------
  3.  
  4.  
  5. AIBehaviour.MorpherJob_Morph = {
  6.     Name = "MorpherJob_Morph",
  7.     JOB = 1,
  8.     
  9.     -- SYSTEM EVENTS            -----
  10.     ---------------------------------------------
  11.     OnActivate = function(self,entity )
  12.  
  13.         
  14.         entity:SelectPipe(0,"standingthere");
  15.  
  16.         local morph_target = AI:FindObjectOfType(entity.id,30,AIAnchor.MORPH_HERE);
  17.         if (morph_target) then
  18.             entity:InsertSubpipe(0,"morpher_morph_at",morph_target);
  19.         end        
  20.     end,
  21.  
  22.  
  23.  
  24. }